-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[App] Allow to use single quotes in file name with the --code
command line option (Fix #60120)
#60121
base: master
Are you sure you want to change the base?
Conversation
🪟 Windows buildsDownload Windows builds of this PR for testing. 🪟 Windows Qt6 buildsDownload Windows Qt6 builds of this PR for testing. |
--code
command line option (Fix #60120)--code
command line option (Fix #60120)
I think we should either use some proper escaping function in Qt, or write something to escape all non-printable characters too. Apparently on Linux, filenames can contain almost all non-printable characters, and they will also cause a problem here. |
The QGIS project highly values your contribution and would love to see this work merged! Unfortunately this PR has not had any activity in the last 14 days and is being automatically marked as "stale". If you think this pull request should be merged, please check
|
Possibly superseded by #60134 |
Description
Properly escapes the single quotes in file name since it is wrapped in single quotes in the Python command run by QgsPythonRunner.
Fixes #60120.